home *** CD-ROM | disk | FTP | other *** search
- # ____________________________________________________
- # | |
- # | Project: POWER VIEW INTERFACE |
- # | File: MAKEPVHC.MAK |
- # | Make: WMAKE (10.6) |
- # | |
- # | Subject: Make file for building PVHC.EXE |
- # | |
- # | Author: Emil Dotchevski |
- # |____________________________________________________|
- #
- # E-mail: zajo@geocities.com
- # URL: http://www.geocities.com/SiliconValley/Bay/3577
-
- compiler_options = -ml -5 -s -oslran -fp5 -zp1 -zdf -zu -fpi87 -fp3 -w2 -e20 -i=..\..\H;C:\WATCOM\H\ -dNOMOUSE -dNOINI -dNOTIMER -dNOICONS -dNOPAL -dNOCONFIG
-
- linker_options = &
- option eliminate &
- system dos &
- option stack=4096
-
- pvhc_object_files = &
- PVHC.OBJ &
- PVBASICS.OBJ &
- PVCOMLIN.OBJ &
- PVSYSTEM.OBJ
-
- PVHC.EXE : $(pvhc_object_files)
- *wlink $(linker_options) name PVHC.EXE file {$(pvhc_object_files)}
-
- PVHC.OBJ : PVHC.CPP .AUTODEPEND
- *wpp $(compiler_options) $[*
-
- PVFC.OBJ : PVFC.CPP .AUTODEPEND
- *wpp $(compiler_options) $[*
-
- PVBASICS.OBJ : ..\..\CPP\PVBASICS.CPP .AUTODEPEND
- *wpp $(compiler_options) $[*
-
- PVCOMLIN.OBJ : ..\..\CPP\PVCOMLIN.CPP .AUTODEPEND
- *wpp $(compiler_options) $[*
-
- PVSYSTEM.OBJ : ..\..\CPP\PVSYSTEM.CPP .AUTODEPEND
- *wpp $(compiler_options) $[*
-